home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000749_sojka@daeron.ics.muni.cz_Tue Jul 12 12:33:42 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from aragorn.ics.muni.cz ([147.251.4.33]) by cs.umb.edu with SMTP id AA28541
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 12 Jul 1994 04:33:11 -0400
  3. Received: from daeron (daeron.ics.muni.cz) by aragorn.ics.muni.cz with SMTP id AA25511
  4.   (5.67a8/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 12 Jul 1994 10:33:02 +0200
  5. Received: by daeron id AA13910
  6.   (5.67b8/IDA-1.4.4); Tue, 12 Jul 1994 10:33:44 +0200
  7. From: Petr Sojka <sojka@daeron.ics.muni.cz>
  8. Message-Id: <199407120833.AA13910@daeron>
  9. Subject: Re: converting to latex2e
  10. To: interran@uluru.Stanford.EDU (John Interrante)
  11. Date: Tue, 12 Jul 1994 10:33:42 +0200 (MET DST)
  12. Cc: tex-k@cs.umb.edu
  13. In-Reply-To: <9407112315.AA06783@uluru.Stanford.EDU> from "John Interrante" at Jul 11, 94 04:15:24 pm
  14. Organization: Masaryk University, Brno, The Czech Republic
  15. Postal-Address: Institute of Computer Science, Buresova 20, 60200 Brno
  16. Telephone: +42-5-41321237 ext. 283, Fax: +42-5-41212747 
  17. X-Mailer: ELM [version 2.4 PL23]
  18. Content-Type: text
  19. Content-Length: 1140      
  20.  
  21. "John Interrante wrote:"
  22. : tools go.  In particular, did latex2e and psnfss work out of the box
  23. : or did people have to copy new .map and .fd files from somewhere to
  24. : /usr/local/lib/texmf/fonts?
  25. : John Interrante <interran@uluru.stanford.edu>
  26.  
  27. Have a look how we hacked it: We've made
  28. ln -s /ftp/pub/tex/CTAN/fonts/metrics /packages/share/tex/lib/fonts/T1
  29. from `run-time tree' to `archive tree' (we are mirroring partial copy
  30. of CTAN locally) and with a script MakePSfontsmap: 
  31.  
  32. cd /packages/share/tex/lib/dvips
  33. cp psfonts.map.orig /tmp/MakePSmap$$
  34. find /packages/share/tex/lib/fonts/T1 -follow -name 'config.*' -exec cat {} \; >>/tmp/MakePSmap$$ 2>/tmp/MakePSerr$$
  35. find /packages/share/tex/lib/fonts/T1 -follow -name 'psfonts.*' -exec cat {} \; >> /tmp/MakePSmap$$ 2>>/tmp/MakePSerr$$
  36. if [ `wc -c </tmp/MakePSerr$$` -eq 0 ]
  37. then cp /tmp/MakePSmap$$ psfonts.map
  38. else cat /tmp/MakePSerr$$
  39. fi
  40. rm -f /tmp/MakePSmap$$ /tmp/MakePSerr$$
  41.  
  42. (as a cron job) to create up-to-date psfonts.map 
  43. As we use kpathsea (with database file created by 
  44. links following cron script Makels-LR), the metrics are known to TeX as well.
  45.  
  46. Petr <sojka@muni.cz>